Advertisement
Guest User

Untitled

a guest
Oct 25th, 2021
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. # Save This as /usr/local/bin/simpleui.py
  2.  
  3. #! /usr/bin/env python3
  4. import time
  5.  
  6. print("Starting Fake Interface")
  7. run = True
  8. while run:
  9. try:
  10. time.sleep(1)
  11. except KeyboardInterrupt as e:
  12. print("Closing Fake interface")
  13. run = False
  14.  
  15. # Make it Excuetable
  16. sudo chmod +777 /usr/local/bin/simpleui.py
  17.  
  18. # Edit ini
  19. [Display]
  20. DISPLAY = simpleui.py
  21.  
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement